home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / EVISION1.ARJ / FARHEAP.HPP < prev    next >
Text File  |  1992-05-19  |  596b  |  19 lines

  1. #if !defined (FARHEAP)                    // To prevent multiple declarations
  2. #define FARHEAP
  3.  
  4. // ---- Prototypes ----------------------------------------------------------
  5.  
  6. char huge *getheap                               // Gets memory from far heap
  7.  
  8. ( unsigned long nbytes ) ;                     // Number of bytes to allocate
  9.  
  10.  
  11. void freeheap                        // Free heap memory previously allocated
  12.  
  13. ( void huge *heapptr ) ;        // Ptr to the ptr to the memory block to free
  14.  
  15.  
  16. // ---- End Header File -----------------------------------------------------
  17.  
  18. #endif
  19.